home *** CD-ROM | disk | FTP | other *** search
/ 360 Degrees of: Yellowstone National Park / 360 Degrees of: Yellowstone National Park.iso / pc / data / exhibit.cst / 00443_play simulation.ls < prev    next >
Encoding:
Text File  |  2008-04-21  |  617 b   |  32 lines

  1.  
  2.   property spritenum
  3.   
  4. on mouseDown
  5.   global mapping_mainimage
  6.   
  7.   if sprite(mapping_mainimage).memberNum > 450 then
  8.     put the ticks into animtimer
  9.     
  10.     repeat while the mouseDown
  11.       if (the ticks-animtimer) > 5 then
  12.         
  13.         if sprite(mapping_mainimage).memberNum = 651 then
  14.           sprite(mapping_mainimage).memberNum = 451
  15.           updatestage
  16.         else
  17.           sprite(mapping_mainimage).memberNum = (sprite(mapping_mainimage).memberNum+4)
  18.           updatestage
  19.         end if
  20.         put the ticks into animtimer
  21.         
  22.       end if
  23.       
  24.     end repeat
  25.     
  26.     
  27.   end if
  28.   
  29. end
  30.  
  31.  
  32.